'Declaration Public Overloads Shared Sub ExecuteMethod( _ ByVal obj As ICustomOracleObject, _ ByVal connection As OracleConnection, _ ByVal typeName As String, _ ByVal methodName As String, _ ByVal ParamArray parameters() As Object _ )
public static void ExecuteMethod( ICustomOracleObject obj, OracleConnection connection, string typeName, string methodName, params object[] parameters )
Parameters
- obj
- The object which method to execute. Can be either typed (i.e., an instance of a wizard-generated class) or untyped (i.e., an OracleObject instance).
- connection
- The connection to the Oracle database where the UDT used is declared.
- typeName
- The user-defined type which obj is an instance of.
- methodName
- The method to be invoked.
- parameters
- The list of input parameters passed to the method.